b565a976d5bb07191bc39a4c917874a090e6d514,test/unit/org/openstreetmap/josm/data/osm/visitor/MergeVisitorTest.java,MergeVisitorTest,waySimple_twoWaysWithNoId_NodesWithoutId,#,763
Before Change
Way theirWay = new Way();
theirWay.addNode(n3);
theirWay.addNode(n4);
theirWay.user = User.createOsmUser(1111, "their");
theirWay.setTimestamp(new Date());
their.addPrimitive(theirWay);
After Change
Node n4 = new Node(new LatLon(1,1));
their.addPrimitive(n4);
Way theirWay = new Way();
theirWay.addNode(n3);
theirWay.addNode(n4);
theirWay.setUser(User.createOsmUser(1111, "their"));
theirWay.setTimestamp(new Date());
their.addPrimitive(theirWay);